home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
ab20
/
ab20_archive
/
text
/
cmanual.lzh
/
ACM2.lzh
/
HintsAndTips
/
Example2.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-01-27
|
404b
|
18 lines
/* Example 2 */
/* This program will print "Hello!" in the CLI window if */
/* started from CLI, or the text will be printed in a special */
/* window that is automatically opened if run from workbench. */
void main();
void main()
{
int loop;
printf( "Hello!\n" );
/* Wait for a while: */
for( loop = 0; loop < 500000; loop++ )
;
}